home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / ada / gnat-3.05- / gnat-3 / gnat-3.05-i486-linux-elf-bin / rts / a-calcon.adb < prev    next >
Encoding:
Text File  |  1996-06-07  |  3.7 KB  |  79 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --                     A D A . C A L E N D A R . C O N V                    --
  6. --                                                                          --
  7. --                                  B o d y                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.7 $                             --
  10. --                                                                          --
  11. --        Copyright (C) 1991,1992,1993,1994 Florida State University        --
  12. --                                                                          --
  13. -- GNARL is free software; you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNARL; see file COPYING.  If not, write --
  21. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  22. -- MA 02111-1307, USA.                                                      --
  23. --                                                                          --
  24. -- As a special exception,  if other files  instantiate  generics from this --
  25. -- unit, or you link  this unit with other files  to produce an executable, --
  26. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  27. -- covered  by the  GNU  General  Public  License.  This exception does not --
  28. -- however invalidate  any other reasons why  the executable file  might be --
  29. -- covered by the  GNU Public License.                                      --
  30. --                                                                          --
  31. -- GNARL was developed by the GNARL team at Florida State University. It is --
  32. -- now maintained by Ada Core Technologies Inc. in cooperation with Florida --
  33. -- State University (http://www.gnat.com).                                  --
  34. --                                                                          --
  35. ------------------------------------------------------------------------------
  36.  
  37. package body Ada.Calendar.Conv is
  38.  
  39.    -----------------------
  40.    -- Time_To_Stimespec --
  41.    -----------------------
  42.  
  43.    function Time_To_Stimespec
  44.      (T    : Ada.Calendar.Time)
  45.       return System.Task_Clock.Stimespec
  46.    is
  47.    begin
  48.       return System.Task_Clock.Duration_To_Stimespec (Duration (T));
  49.  
  50.    exception
  51.       --  Notice that the renage of Calendar.Time is not the same as
  52.       --  the range for Stimespec
  53.  
  54.       when others =>
  55.          raise Constraint_Error;
  56.  
  57.    end Time_To_Stimespec;
  58.  
  59.    -----------------------
  60.    -- Stimespec_To_Time --
  61.    -----------------------
  62.  
  63.    function Stimespec_To_Time
  64.      (T    : System.Task_Clock.Stimespec)
  65.       return Ada.Calendar.Time
  66.    is
  67.    begin
  68.       return Time (System.Task_Clock.Stimespec_To_Duration (T));
  69.  
  70.    exception
  71.       --  Notice that the renage of Calendar.Time is not the same as
  72.       --  the range for Stimespec
  73.  
  74.       when others =>
  75.          raise Constraint_Error;
  76.    end Stimespec_To_Time;
  77.  
  78. end Ada.Calendar.Conv;
  79.